# Makefile


all: drveep.com test_eep.exe

drveep.com: drveep.obj
	TLINK /t /V  drveep.obj

test_eep.exe: test_eep.obj teclado.lib
  TLINK /V  test_eep.obj teclado.lib

.asm.obj: 
  TASM /ZI $<

.obj.lib:
   TLIB $&.lib -+$<

clean:
    del *.obj
    del *.map
    del test_eep.exe
    del *.lib
	del drveep.com